home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- <HEAD>
- <LINK REL="stylesheet" TYPE="text/css" HREF="%5css/default.css">
- </HEAD>
- <BODY LEFTMARGIN="0" TOPMARGIN="0">
-
- <script language="Javascript">
- //LOCALIZATION STRINGS
- var _errNoSelected = "No items have been selected yet.";
- var _strDelete = "Delete the selected item(s)?";
- </script>
-
- <DIV ID="tooltip" STYLE="position:absolute;visibility:hidden;z-index:99;"></DIV>
-
- <SCRIPT SRC="%5js/helps.js"></SCRIPT>
- <SCRIPT SRC="%5js/tips.js"></SCRIPT>
-
- <SCRIPT language="JavaScript">
- var _numItems = %3;
- function selectAll()
- {
- for(var i=1; i <= _numItems; i++)
- {
- document.ReportInstanceForm.elements["chkbox"+i].checked = true;
- }
- }
-
- function deselectAll()
- {
- for(var i=1; i <= _numItems; i++)
- {
- document.ReportInstanceForm.elements["chkbox"+i].checked = false;
- }
- }
-
- function doSelectedAction(action)
- {
- var items = "";
- for(var i=1; i <= _numItems; i++)
- {
- if(document.ReportInstanceForm.elements["chkbox"+i].checked)
- items += document.ReportInstanceForm.elements["chkbox"+i].value + "*";
- }
-
- if(items != "")
- {
- if(action != "delete" || window.confirm(_strDelete))
- {
- document.ReportInstanceForm.checkedItems.value = items;
- document.ReportInstanceForm.action += action;
- document.ReportInstanceForm.submit();
- }
- }
- else
- {
- alert(_errNoSelected);
- }
- }
-
- function runNow()
- {
- // Set the action to "run-now"
- document.ReportInstanceForm.action = "%4";
- document.ReportInstanceForm.submit();
- }
-
- function refresh()
- {
- window.location = "%6";
- }
-
- </SCRIPT>
-
- <FORM action="%2" name="ReportInstanceForm" method=POST>
- <TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" WIDTH="100%">
- <TR CLASS="listHeading">
- <TD CLASS="listHeading" WIDTH="30%" ALIGN="LEFT"><SPAN ID="text"> Instance Time</SPAN></TD>
- <TD CLASS="listHeading" WIDTH="10%" ALIGN="LEFT"><SPAN ID="text">Status </SPAN></TD>
- <TD CLASS="listHeading" WIDTH="10%" ALIGN="LEFT"><SPAN ID="text">Format </SPAN></TD>
- <TD CLASS="listHeading" WIDTH="15%" ALIGN="LEFT"><SPAN ID="text">Run By </SPAN></TD>
- <TD CLASS="listHeading" WIDTH="30%" ALIGN="LEFT"><SPAN ID="text">Parameters </SPAN></TD>
- <TD CLASS="listHeading" WIDTH="5%" ALIGN="middle"><SPAN ID="text">Selected</SPAN></TD>
- </TR>
- %1
- <INPUT type=hidden name="checkedItems" value="">
- </TABLE>
- </FORM>
-
-
-
- </BODY>
- </HTML>
-